home *** CD-ROM | disk | FTP | other *** search
/ FM Towns: Free Software Collection 9 / FM Towns Free Software Collection 9.iso / taropyon / silib / inc / fdl / fdldrv.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-11-16  |  661 b   |  29 lines

  1. #ifndef    _FDL_FDLDRV_H
  2. #define    _FDL_FDLDRV_H
  3.  
  4. typedef struct _fdldrvinf_t    /* ドライブ情報構造体    */
  5. {
  6.     struct _fdldrvinf_t    *next;
  7.     int            drv;    /* ドライブ    0:A, 1:B    */
  8.     int            typ;    /* ドライブ種別            */
  9. } FDLDRVINF_T;
  10.  
  11. #define    FDL_DRVTYP_UN        (0)
  12. #define    FDL_DRVTYP_FDD        (1)
  13. #define    FDL_DRVTYP_FDD2        (2)
  14. #define    FDL_DRVTYP_ROM        (3)
  15. #define    FDL_DRVTYP_RAM        (4)
  16. #define    FDL_DRVTYP_HDD        (5)
  17. #define    FDL_DRVTYP_MO        (6)
  18. #define    FDL_DRVTYP_CD        (7)
  19. #define    FDL_DRVTYP_ICM        (8)
  20. #define    FDL_DRVTYP_LAN        (9)
  21. #define    FDL_DRVTYP_NET        (10)
  22.  
  23. extern FDLDRVINF_T       *FdlDrvInf;
  24.  
  25. extern void        FDL_clearDrvInf(void);
  26. extern int        FDL_getDrvInf(void);
  27.  
  28. #endif
  29.